home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 5
/
CD-ROM Today - The Disc (Issue 5)(November 1994).ISO
/
mac
/
Mac shareware
/
Education
/
RLaB
/
examples
/
fib.r
< prev
next >
Wrap
Text File
|
1994-09-21
|
278b
|
24 lines
//
// Calculate Fibonacci numbers
//
"Starting the fibonacci test..."
i=1;
while ( i < 2 ) {
i=i+1;
a=0; b=1;
while ( b < 10000 ) {
c = b;
b = a+b;
a = c;
}
}
b
if ( b != 10946 ) {
error("failed fibonacci test");
else
"...passed fibonacci test..."
}